home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / win / pascal / janus.exe / DIALOGWN.DOC < prev    next >
Text File  |  1993-06-02  |  2KB  |  56 lines

  1.  
  2. Release: 6/1/93
  3.  
  4. This is the fourth release of two related objects
  5.   tDialogWindow and tJanusDialogWindow
  6. and a test program called DlgTest.
  7.  
  8.              Peter Sawatzki (PS)
  9.              Buchenhof 3, D 58091 Hagen, Germany
  10.  CompuServe: 100031,3002
  11.  
  12.   Copyright (c) 1993 Peter Sawatzki. All Rights Reserved.
  13.  
  14.  
  15. tDialogWindow
  16. =============
  17.  
  18. tDialogWindow is a descendant of tWindow that behaves like a modeless or
  19. (system-) modal  dialog. It  may be  used as  a replacement for Borlands
  20. tDialog and tDlgWindow. It inherits all features from tWindow making  it
  21. easy  to  use  tDialogWindow  as  a MDI child. Furthermore tDialogWindow
  22. virtualizes the creation of its child windows when they are loaded  from
  23. resource. A descendant  of tDialogWindow 'tJanusDialogWindow'  makes use
  24. of this feature and creates 'BorChilds' if BWCC.DLL is loaded,  standard
  25. childs if not. See DlgTest.Pas for examples how to use 'em.
  26.  
  27. tJanusDialogWindow
  28. ==================
  29.  
  30. tJanusDialogWindow  is  a  descendant  of  tDialogWindow that is able to
  31. create  a  modeless/modal  BorDlg  from  a  standard  dialog resource, a
  32. standard  dialog  from  a  Borland  style  dialog  (and  the  other  two
  33. combinations). Some further features:
  34.  
  35.   - no wObjectB is needed
  36.   - one decides at runtime whether to use BorDlgs or standard dialogs
  37.  
  38. Program DlgTest
  39. ===============
  40. DlgTest demonstrates tDialogWindow and tJanusDialogWindow use as modeless
  41. and modal Dialog Windows and MDI child windows.
  42.  
  43.   - creates a standard Dialog from BorDlg resource
  44.   - creates a BorDlg from standard resource
  45.   - creates Dialogs as is
  46.   - demonstrates the use of "non-standard" MDI child styles
  47.     under Windows 3.1
  48. uses BWCC.DLL if present. If not: it doesn't matter :-)
  49.  
  50.  
  51. Please report bugs of any kind to me, send improvements you made.
  52. If you modify/include my units in one of your programs or put them on a
  53. bonus disk, i would love to see a copy of it.
  54.  
  55.  
  56.